home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ubiquity.postinst < prev    next >
Text File  |  2008-10-29  |  603b  |  26 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. . /usr/share/debconf/confmodule
  5.  
  6. if [ -e /etc/rc2.d/S20ubiquity ]; then
  7.     update-rc.d -f ubiquity remove >/dev/null 2>&1
  8. fi
  9.  
  10. # Automatically added by dh_installinit
  11. if [ -x "/etc/init.d/ubiquity" ]; then
  12.     update-rc.d ubiquity start 29 2 3 4 5 . >/dev/null || exit $?
  13. fi
  14. # End automatically added section
  15. # Automatically added by dh_pycentral
  16. if which pycentral >/dev/null 2>&1; then
  17.     pycentral pkginstall ubiquity
  18.     if grep -qs '^ubiquity$' /var/lib/pycentral/delayed-pkgs; then
  19.         sed -i '/^ubiquity$/d' /var/lib/pycentral/delayed-pkgs
  20.     fi
  21. fi
  22. # End automatically added section
  23.  
  24.  
  25. exit 0
  26.